home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / src / texinfo-.1 / info / pc_term.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-29  |  1.3 KB  |  47 lines

  1. /* pc_term.h */
  2.  
  3. /* This file is part of the MSDOS-DJGPP-port of the GNU standalone
  4.    Info-reader
  5.  
  6.    Copyright (C) Hans-Bernhard Broeker
  7.  
  8.    This program is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2, or (at your option)
  11.    any later version.
  12.  
  13.    This program is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.    Written by Hans-Bernhard Broeker (softbrek@POOL.Informatik.RWTH-Aachen.DE)
  23. */
  24.  
  25. #ifndef PC_TERM_H
  26. #define PC_TERM_H
  27.  
  28. void pc_begin_inverse();
  29. void pc_end_inverse();
  30. void pc_prep_terminal();
  31. void pc_unprep_terminal();
  32. void pc_up_line();
  33. void pc_down_line();
  34. void pc_clear_screen();
  35. void pc_clear_to_eol();
  36. void pc_get_screen_size();
  37. void pc_goto_xy();
  38. void pc_initialize_terminal();
  39. void pc_new_terminal();
  40. void pc_put_text();
  41. void pc_ring_bell();
  42. void pc_write_chars();
  43. void pc_scroll_terminal();
  44.  
  45. #endif /* PC_TERM_H
  46.  
  47.